86c0d0b16f613e51be66766358dcc877449f120a,enterprise/test/java/slavetest/FakeMaster.java,FakeMaster,getOrBeginTx,#TxIdElement#,96

Before Change


    {
        try
        {
            Transaction tx = transactions.get( txId );
            if ( tx == null )
            {
                txManager.begin();
                tx = txManager.getTransaction();
                transactions.put( txId, tx );
            }
            return tx;
        }
        catch ( NotSupportedException e )
        {

After Change


        try
        {
            txManager.begin();
            Transaction tx = txManager.getTransaction();
            transactions.put( txId, tx );
            return tx;
        }
        catch ( NotSupportedException e )
        {